home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programmer's Power Pack / Delphi Volume 1.iso / s_to_z / timagefx / imgfxdem.dpr < prev    next >
Text File  |  1996-09-15  |  257b  |  15 lines

  1. program ImgFXdem;
  2.  
  3. uses
  4.   Forms,
  5.   Imgfxfrm in 'IMGFXFRM.PAS' {Form1},
  6.   Abtimgfx in 'ABTIMGFX.PAS' {AboutBox};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TForm1, Form1);
  12.   Application.CreateForm(TAboutBox, AboutBox);
  13.   Application.Run;
  14. end.
  15.